From a6b2e4dcdb74000962237ec1d2640d55b5bd01b1 Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Thu, 2 Jun 2005 13:56:30 +0000 Subject: [PATCH] bitkeeper revision 1.1637.1.1 (429f100et_8vOZLTej8un3-WOmraFg) Fix bug #68: x86_64 build break - `pgd_cache' undeclared http://bugzilla.xensource.com/cgi-bin/bugzilla/show_bug.cgi?id=68 reboot.c: Fix x86_64 build. Signed-off-by: Christian Limpach --- linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c b/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c index 62c8274895..572b1a71b3 100644 --- a/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c +++ b/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c @@ -103,8 +103,10 @@ static void __do_suspend(void) __cli(); +#ifdef __i386__ mm_pin_all(); kmem_cache_shrink(pgd_cache); +#endif netif_suspend(); -- 2.30.2